home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / DESKLIBC / SOURCES.ZIP / DeskLib / !DLSources / Libraries / Resource / c / Pathname < prev   
Text File  |  1995-07-09  |  939b  |  29 lines

  1. /*
  2.     ####             #    #     # #
  3.     #   #            #    #       #          The FreeWare C library for 
  4.     #   #  ##   ###  #  # #     # ###             RISC OS machines
  5.     #   # #  # #     # #  #     # #  #   ___________________________________
  6.     #   # ####  ###  ##   #     # #  #                                      
  7.     #   # #        # # #  #     # #  #    Please refer to the accompanying
  8.     ####   ### ####  #  # ##### # ###    documentation for conditions of use
  9.     ________________________________________________________________________
  10.  
  11.     File:    Resource.Pathname.c
  12.     Author:  Copyright © 1993 Jason Williams
  13.     Version: 1.00 (15 Jul 1993)
  14.     Purpose: Global variable - Resource filename prefix string
  15. */
  16.  
  17. #include "DeskLib:Resource.h"
  18.  
  19.  
  20. char resource_pathname[32] = "\0";      /* no path (use CSD) if user not set */
  21.  
  22.  
  23. #ifdef _DLL
  24. char *Resource__Ref_pathname( void)
  25. {
  26. return resource_pathname;
  27. }
  28. #endif
  29.